home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / QDDVX102.ZIP / contrib / dvx / inc / x11 / xatomtyp.h < prev    next >
Text File  |  1993-07-15  |  5KB  |  112 lines

  1. #ifndef _XATOMTYPE_H_
  2. #define _XATOMTYPE_H_
  3.  
  4. /* $XConsortium: Xatomtype.h,v 11.14 89/04/19 15:09:29 jim Exp $ */
  5.  
  6. /***********************************************************
  7. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
  8. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  9.  
  10.                         All Rights Reserved
  11.  
  12. Permission to use, copy, modify, and distribute this software and its 
  13. documentation for any purpose and without fee is hereby granted, 
  14. provided that the above copyright notice appear in all copies and that
  15. both that copyright notice and this permission notice appear in 
  16. supporting documentation, and that the names of Digital or MIT not be
  17. used in advertising or publicity pertaining to distribution of the
  18. software without specific, written prior permission.  
  19.  
  20. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  21. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  22. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  23. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  24. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  25. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  26. SOFTWARE.
  27.  
  28. ******************************************************************/
  29.  
  30. /*
  31.  * This files defines crock C structures for calling XGetWindowProperty and
  32.  * XChangeProperty.  All fields must be longs as the semantics of property
  33.  * routines will handle conversion to and from actual 32 bit objects.  If your
  34.  * compiler doesn't treat &structoflongs the same as &arrayoflongs[0], you
  35.  * will have some work to do.
  36.  */
  37.  
  38. #define BOOL long
  39. #define SIGNEDINT long
  40. #define UNSIGNEDINT unsigned long
  41. #define RESOURCEID unsigned long
  42.  
  43.  
  44. /* this structure may be extended, but do not change the order */
  45. typedef struct _xPropSizeHints { /* Tagged. POHC 90/10/08 */
  46.     UNSIGNEDINT flags;
  47.     SIGNEDINT x, y, width, height;    /* need to cvt; only for pre-ICCCM */
  48.     SIGNEDINT minWidth, minHeight;    /* need to cvt */
  49.     SIGNEDINT maxWidth, maxHeight;    /* need to cvt */
  50.     SIGNEDINT widthInc, heightInc;    /* need to cvt */
  51.     SIGNEDINT minAspectX, minAspectY;    /* need to cvt */
  52.     SIGNEDINT maxAspectX, maxAspectY;    /* need to cvt */
  53.     SIGNEDINT baseWidth,baseHeight;    /* need to cvt; ICCCM version 1 */
  54.     SIGNEDINT winGravity;        /* need to cvt; ICCCM version 1 */
  55. } xPropSizeHints;
  56. #define OldNumPropSizeElements 15    /* pre-ICCCM */
  57. #define NumPropSizeElements 18        /* ICCCM version 1 */
  58.  
  59. /* this structure may be extended, but do not change the order */
  60. /* RGB properties */
  61. typedef struct _xPropStandardColormap { /* Tagged. POHC 90/10/08 */
  62.     RESOURCEID colormap;
  63.     UNSIGNEDINT red_max;
  64.     UNSIGNEDINT red_mult;
  65.     UNSIGNEDINT green_max;
  66.     UNSIGNEDINT green_mult;
  67.     UNSIGNEDINT blue_max;
  68.     UNSIGNEDINT blue_mult;
  69.     UNSIGNEDINT base_pixel;
  70.     RESOURCEID visualid;        /* ICCCM version 1 */
  71.     RESOURCEID killid;        /* ICCCM version 1 */
  72. } xPropStandardColormap;
  73. #define OldNumPropStandardColormapElements 8  /* pre-ICCCM */
  74. #define NumPropStandardColormapElements 10  /* ICCCM version 1 */
  75.  
  76.  
  77. /* this structure may be extended, but do not change the order */
  78. typedef struct _xPropWMHints { /* Tagged. POHC 90/10/08 */
  79.     UNSIGNEDINT flags;
  80.     BOOL input;                /* need to convert */
  81.     SIGNEDINT initialState;        /* need to cvt */
  82.     RESOURCEID iconPixmap;
  83.     RESOURCEID iconWindow;
  84.     SIGNEDINT  iconX;            /* need to cvt */
  85.     SIGNEDINT  iconY;            /* need to cvt */
  86.     RESOURCEID iconMask;
  87.     UNSIGNEDINT windowGroup;
  88.   } xPropWMHints;
  89. #define NumPropWMHintsElements 9 /* number of elements in this structure */
  90.  
  91. /* this structure defines the icon size hints information */
  92. typedef struct _xPropIconSize { /* Tagged. POHC 90/10/08 */
  93.     SIGNEDINT minWidth, minHeight;    /* need to cvt */
  94.     SIGNEDINT maxWidth, maxHeight;    /* need to cvt */
  95.     SIGNEDINT widthInc, heightInc;    /* need to cvt */
  96.   } xPropIconSize;
  97. #define NumPropIconSizeElements 6 /* number of elements in this structure */
  98.  
  99. /* this structure defines the window manager state information */
  100. typedef struct _xPropWMState { /* Tagged. POHC 90/10/08 */
  101.     SIGNEDINT state;            /* need to cvt */
  102.     RESOURCEID iconWindow;
  103. } xPropWMState;
  104. #define NumPropWMStateElements 2    /* number of elements in struct */
  105.  
  106. #undef BOOL
  107. #undef SIGNEDINT
  108. #undef UNSIGNEDINT
  109. #undef RESOURCEID
  110.  
  111. #endif /* _XATOMTYPE_H_ */
  112.